HTMLify
index.html
Views: 363 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="style.css" /> <title>Hangman</title> </head> <body> <h1>Hangman</h1> <p>Find the hidden word - Press a letter</p> <div class="game-container"> <svg height="250" width="200" class="figure-container"> <!-- rod --> <line x1="60" y1="20" x2="140" y2="20" /> <line x1="140" y1="20" x2="140" y2="50" /> <line x1="60" y1="20" x2="60" y2="230" /> <line x1="20" y1="230" x2="100" y2="230" /> <!-- head --> <circle cx="140" cy="70" r="20" class="figure-part" /> <!-- body --> <line x1="140" y1="90" x2="140" y2="150" class="figure-part" /> <!-- arms --> <line x1="140" y1="120" x2="120" y2="100" class="figure-part" /> <line x1="140" y1="120" x2="160" y2="100" class="figure-part" /> <!-- legs --> <line x1="140" y1="150" x2="120" y2="180" class="figure-part" /> <line x1="140" y1="150" x2="160" y2="180" class="figure-part" /> </svg> <div class="wrong-letters-container"> <div id="wrong-letters"></div> </div> <div class="word" id="word"></div> </div> <!-- Popup --> <div class="popup-container" id="popup-container"> <div class="popup"> <h2 id="final-message"></h2> <h3 id="final-message-reveal-word"></h3> <button id="play-button">Play Again</button> </div> </div> <!-- Notification --> <div class="notification-container" id="notification-container"> <p>You have already entered this letter</p> </div> <script src="script.js"></script> </body> </html> |